home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 11 - 1995 / 11.11 Nov 95 / ODF Beeper / Include / SOM / IDL / SOMBeeper.idl
Encoding:
Text File  |  1995-06-05  |  795 b   |  47 lines  |  [TEXT/MPS ]

  1. #ifdef __PRIVATE__
  2. //#
  3. //#    File:        SOMBeeper.idl
  4. //#
  5. //#    Contains:    Interface for SOMBeeperPart class
  6. //#
  7. //#    Copyright:    (c) 1995 by Apple Computer, Inc., all rights reserved.
  8. //#
  9. #else
  10. //#    Copyright:    (c) 1993-1995 by Apple Computer, Inc., all rights reserved.
  11. #endif
  12.  
  13. #ifndef SOMBeeper_IDL
  14. #define SOMBeeper_IDL
  15.  
  16. #ifndef FWSOMPRT_IDL
  17. #include "FWSOMPrt.idl"
  18. #endif
  19.  
  20. //==============================================================================
  21. // BeeperPart
  22. //==============================================================================
  23.  
  24. module ODFExamples
  25. {
  26.  
  27. interface ODFBeeper :  FW_SOMPart
  28. {
  29. #ifdef __SOMIDL__
  30.   implementation
  31.     {
  32.     functionprefix = ODFBeeper;
  33.     override:
  34.         somInit,
  35.         somUninit,
  36.         NewFrameworkPart;
  37.     
  38.     majorversion = 1; minorversion = 0;
  39.   };
  40. #endif
  41. };
  42.  
  43. };
  44.  
  45. #endif
  46.  
  47.